home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- Sub Animation_ObjMouseMove (XLoc As Integer, YLoc As Integer, ObjectType As Integer, ObjectIndex As Integer, ObjectName As String)
- Label1.Caption = ObjectName
- End Sub
-
- Sub Animation_Play (Playing As Integer)
- Animation.Play = True
- End Sub
-
- Sub Form_Load ()
- Animation.AnimFileName = "bumble.mwf"
- Animation.AnimName = "Bumble Bee"
- Animation.Play = True
- End Sub
-
- Sub Form_Resize ()
- Animation.Left = 0
- Animation.Top = Label1.Top + Label1.Height
- Animation.Height = ScaleHeight
- Animation.Width = ScaleWidth - Animation.Top
- End Sub
-
-